home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_100
/
163_01
/
clearerr.c
< prev
next >
Wrap
Text File
|
1988-01-30
|
384b
|
10 lines
/*
** clear error on stream
*/
#define FILE int
#include "streamio.h"
clearerr(stream) FILE *stream; {
stream[_IOB_FLAG] &= ~_ERR;
}